home *** CD-ROM | disk | FTP | other *** search
Makefile | 1991-09-04 | 1.2 KB | 40 lines |
- /*****************************************************************************
- //
- // Copyright (C) 1991 Texas Instruments Incorporated.
- //
- // Permission is granted to any individual or institution to use, copy, modify,
- // and distribute this software, provided that this complete copyright and
- // permission notice is maintained, intact, in all copies and supporting
- // documentation.
- //
- // Texas Instruments Incorporated provides this software "as is" without
- // express or implied warranty.
- //
- *****************************************************************************
- *
- * Author: Martin Neath
- * Filename: Imakefile
- * Module: pisces/byacc
- * Purpose: Imake file for byacc
- * Creation Date: 05/11/90
- *
- *****************************************************************************/
-
- LINKDEP =
- ALLCPLUSDEFS =
-
- HDRS = defs.h
-
- SRCS = closure.$(C) error.$(C) lalr.$(C) lr0.$(C) main.$(C) \
- mkpar.$(C) output.$(C) reader.$(C) skeleton.$(C) \
- symtab.$(C) verbose.$(C) warshall.$(C)
-
- OBJS = closure.$(OBJ) error.$(OBJ) lalr.$(OBJ) lr0.$(OBJ) main.$(OBJ) \
- mkpar.$(OBJ) output.$(OBJ) reader.$(OBJ) skeleton.$(OBJ) \
- symtab.$(OBJ) verbose.$(OBJ) warshall.$(OBJ)
-
- All(byacc)
- OptimizeCObject()
- CProgram(byacc)
- AllInstall()
-